home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Ver Disp 2.xpl
< prev
next >
Wrap
Text File
|
2001-04-13
|
2KB
|
65 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="1"
"COUNT"="5"
"UIPATH"="Information\Core"
"NAME"="Windows NT/2K/XP System Info #1"
"OSVERSION"="010101"
"VERSION"="1.26"
"LANGUAGE"="VBScript"
"TEXT 1"="Windows Version"
"TEXT 2"="Build Version"
"TEXT 3"="Plus!/IE Version"
"TEXT 4"="Product ID"
"TEXT 5"="Service Pack"
"DESCRIPTION 1"="This plug-in displays some of the internal Windows NT/Windows 2000/XP information."
"DESCRIPTION 2"="You can't change anything!!!"
"AUTHOR"="Xteq Systems (CptSiskoX)"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
sP="HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\"
sV1="CurrentVersion"
sV2="CurrentBuildNumber"
sV3="Plus! VersionNumber"
sV4="ProductId"
sV5="CSDVersion"
Sub Plugin_Initialize
if GetWinVer=2 or GetWinVer=4 or GetWinVer=6 then
s=RegReadValue(sP & sV1)
Call SetUIElement(1,s)
s=RegReadValue(sP & sV2)
Call SetUIElement(2,s)
s=RegReadValue(sP & sV3)
Call SetUIElement(3,s)
s=RegReadValue(sP & sV4)
Call SetUIElement(4,s)
s=RegReadValue(sP & sV5)
Call SetUIElement(5,s)
else
Call SetUIElement(1,"N/A")
Call SetUIElement(2,"N/A")
Call SetUIElement(3,"N/A")
Call SetUIElement(4,"N/A")
Call SetUIElement(5,"N/A")
end if
Call Disable 'user can't change anything!
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
End Sub
Sub Plugin_Terminate
End Sub